home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 February
/
CHIPCD_02_2002.iso
/
Internet
/
Macromedia ColdFusion Server 5
/
coldfusion-50-win-us.exe
/
data1.cab
/
Examples
/
CFDOCS
/
snippets
/
hour.cfm
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-06-13
|
424 b
|
27 lines
<!--- This example shows the use of Hour, Minute, and Second --->
<HTML>
<HEAD>
<TITLE>
Hour Example
</TITLE>
</HEAD>
<BASEFONT FACE="Arial, Helvetica" SIZE=2>
<BODY bgcolor="#FFFFD5">
<H3>Hour Example</H3>
<CFOUTPUT>
The time is currently #TimeFormat(Now())#.
We are in hour #Hour(Now())#, Minute #Minute(Now())#
and Second #Second(Now())# of the day.
</CFOUTPUT>
</BODY>
</HTML>